home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / GETATTR.CC < prev    next >
Text File  |  1993-04-04  |  244b  |  12 lines

  1. int get_attr(int row, int col)
  2. /* Get the attribute at the specified row and col.
  3.    RETURNED is attr
  4. */
  5. {
  6.   extern color, mono, cga, ega, scrseg, bios;
  7.   int    attr;
  8.   unsigned int scrofs;
  9.   sread_a(row,col,&attr);
  10.   return(attr);
  11. }
  12.